/* /magic/Another Mind Reader.css */

*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body { /* prevents text selection */
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
}
body {
	background-color:ivory;
	font-family:sans-serif;
}
button {
	margin-top:2vw;
	padding:3px 10px 5px 12px;
	font-size:1.2em;
	border-radius: 20%;
	background-color: burlywood;
	color:navy;
}
p {
	margin-bottom:10px;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
#head div img {
	width:40%;
	display:block;
	margin:0 auto;
}
#title {
	font-style: italic;
	color:#00f;
	font-size:14px;
}
#rest {
	width:90vw;
	margin: 0 auto;
}
#msg {
	margin-top:10px;
	font-size:17px;
	line-height:19px;
	text-align:center;
	color:brown;
}
#countries {
	display:flex;
	max-width:800px;
	margin: 5px auto;
	flex-wrap: wrap;
	justify-content:space-between;
}
.country {
	font-size:14px;
	background-color:cyan;
	margin: 3px;
	padding:5px 5px 2px 5px;
	color:black;
	border-radius:5%;
	border:2px solid;
}
#letters {
	display:none;
	width:90vw;
	max-width:800px;
	margin: 50px auto;
	flex-wrap: wrap;
	justify-content:space-between;
}
.letter {
	font-size: 30px;
	font-family: serif;
	background-color:cyan;
	padding:6px 6px 1px 6px;
	color:black;
	border-radius:5%;
	border:2px solid;
}
#button {
	display:flex;
	justify-content:center;
}
@media screen and (orientation:landscape) {
	button {
		padding:3px 15px 6px 19px;
	}
	.country {
		padding:0 2px;
	}
	#letters {
		margin: 0 auto;
	}
	.letter {
		font-size: 46px;
		padding:8px 16px 3px 16px;
	}
	#msg {
		font-size:18px;
		line-height:22px;
	}
}